-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add ignore_refs parameter #48
Conversation
Adds a new param `ignore_refs` to skip refs that match glob expressions. This defaults to `dependabot/*` to ignore dependabot runs which don't have access to secrets.
This comment has been minimized.
This comment has been minimized.
@@ -22,12 +22,14 @@ import { | |||
|
|||
// Inputs are the inputs to the action, matching the inputs in the action.yml. | |||
export interface Inputs { | |||
ref_name: string; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
what is this and why is it here? this is not a named option in action.yml
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Its resolved from the inputs, not a parameter to the action.
Co-authored-by: Nick Snyder <[email protected]>
closing in favor of #44 |
This is an alternative to #44. Adds a new param
ignore_refs
to skip refs that match glob expressions. This defaults todependabot/*
to ignore dependabot runs which don't have access to secrets.View the example workflow here: https://github.com/bufbuild/buf-action-demo/pull/13